Welcome![Sign In][Sign Up]
Location:
Search - bash shell

Search list

[OtherBash_manuscript_programming

Description: shell 是如此地重要,但令人惊奇的是,介绍shell 的书没有真正令人满意的。所幸的是,我看到了 这本被人称为abs 的书,这本书介绍了bash 大量的细节和广阔的范围,我遇到的绝大部分的技术问题 --无论是我忘记的或是以前没有发现的--都可以在这本书里找到答案。这本使用大量的例子详细地介绍 了Bash 的语法,各种技巧,调试等等的技术,以循序渐进的学习方式,让你了解Bash 的所有特性, 在书中还有许多练习可以引导你思考,以得到更深入的知识。无论你是新手还是老手,或是使用其他 语言的程序员,我能肯定你能在此书用受益。而本书除了介绍BASH 的知识之外,也有许多有用的关 于Linux/UNIX 的知识和其他shell 的介绍。-Shell is so important and it s surpring that there are no satisfied book for it. But this book is a very good introduction for Bash.
Platform: | Size: 1367040 | Author: 薛刚 | Hits:

[Linux-Unixlinux2

Description: 1.了解shell的作用和主要分类。 2.掌握bash的建立和执行方式。 3.掌握bash的基本语法。 4.学会编写和调试shell脚本。 -1. To understand the role of shell and main categories. 2. To master bash the establishment and implementation. 3. To master the basic grammatical bash. 4. Learn to write and debug shell scripts.
Platform: | Size: 607232 | Author: winter | Hits:

[Linux-UnixOCaml-for-scientists

Description: 本书旨在为Linux、Unix以及OS X系统管理员提供短小精悍且功能强大的shell实现解决方案,教会读者如何使用现有调试器调试shell脚本。 全书分为3个部分:脚本技术基础、系统交互和高级技术、有用的脚本实例。主要内容包括如何使小到中型的系统管理任务自动化,分析系统数据并编辑配置文件,使用bash和ksh等编写Linux、Unix和OS X应用程序的脚本文件等。 本书面向中高级的shell程序员,以及需要解决日常问题的系统管理员,但假定读者能够读懂一般的shell代码。 -System administrators need libraries of solutions that are ingenious but understandable. They don’t want to reinvent the wheel, but they don’t want to reinvent filesystem management either! Expert Shell Scripting is the ultimate resource for all working Linux, Unix, and OS X system administrators who would like to have short, succinct, and powerful shell implementations of tricky system scripting tasks. * Automating small to medium system management tasks * Analyzing system data and editing configuration files * Scripting Linux, Unix, and OS X applications using bash, ksh, et al.
Platform: | Size: 2173952 | Author: 保密 | Hits:

[Linux-UnixBourne-again-shell-(bash)

Description: linux编程时可以用到的一本很好的参考书,和大家一起分享。-linux programming can be used in a very good reference book to share with everyone.
Platform: | Size: 295936 | Author: taiwei | Hits:

[Othershell_programming

Description: 高级Bash脚本编程指南 对学习shell编程的朋友很有帮助-Advanced Bash Scripting Guide is helpful to learn shell programming Friends
Platform: | Size: 1367040 | Author: jie | Hits:

[Linux-Unixabs-guide-3.7-cnhtm.tar

Description: 脚本编程的基础书籍,练就一身扎实的基本功。-Advanced Bash-Scripting Guide An in-depth exploration of the art of shell scripting
Platform: | Size: 1107968 | Author: | Hits:

[Shell apiABS_Guide_cn

Description: 高级Bash 脚本编程指南,一本深入学习shell 脚本艺术的书籍-Advanced Bash-Scripting Guide
Platform: | Size: 1367040 | Author: 徐帆 | Hits:

[Linux-UnixgjBash

Description: 几乎所有的Linux 和绝大部分的UNIX 都可以使用Bash。作为系统与用户之间的交互接口,shell 几乎是你在UNIX 工作平台上最亲密的朋友-Almost all Linux and most UNIX can use Bash. As the interaction between system and user interfaces, shell work almost your UNIX platform closest friends
Platform: | Size: 1368064 | Author: zhao shi jiang | Hits:

[Windows Developfunny

Description: 在shell界面下显示字符动画。 包含一个c文件和两个shell脚本。 c程序负责把bmp图片转换成txt。 shell脚本负责显示。-show movie in the bash
Platform: | Size: 5120 | Author: yejunjie | Hits:

[Linux-Unixabs-guide

Description: 进阶Bash 脚本编写指导,深入学习Bash 脚本语言。这是一本非常好的UNIX/Linux 下脚本编写指导书-Advanced Bash-Scripting Guide,An in-depth exploration of the art of shell scripting
Platform: | Size: 1792000 | Author: 唐小飞 | Hits:

[Linux-Unix20100604_7813812_0

Description: 高级Bash 脚本编程指南,一本深入学习shell 脚本艺术的书籍,作者:Mendel Cooper,Version 3.7.2-Advanced Bash Scripting Guide, an in-depth art of shell scripting books, author: Mendel Cooper, Version 3.7.2
Platform: | Size: 1373184 | Author: clark | Hits:

[Shell apishiyan1

Description: 实现一个简单的shell(命令行解释器),类似于bash, csh等。本设计的主要目的在于学会如何在Unix系统下创建进程和管理进程。 要求实现的shell支持以下内部命令: 1. cd <目录> 更改当前的工作目录到另一个<目录>。如果<目录>未指定,输出当前工作目录。如果<目录>不存在,要求有适当的错误信息提示。改命令应能够改变PWD的环境变量。 2. environ 列出所有环境变量字符串的设置(类似于Unix系统下的env命令)。 3. echo <内容> 显示echo后的内容且换行。 4. help 简短概要地输出你的shell的使用方法和基本功能。 5. jobs 输出shell当前的一系列子进程,要求提供子进程的命名和PID号。 6. quit, exit, bye 退出shell。 -实现一个简单的shell(命令行解释器),类似于bash, csh等。本设计的主要目的在于学会如何在Unix系统下创建进程和管理进程。 要求实现的shell支持以下内部命令: 1. cd <目录> 更改当前的工作目录到另一个<目录>。如果<目录>未指定,输出当前工作目录。如果<目录>不存在,要求有适当的错误信息提示。改命令应能够改变PWD的环境变量。 2. environ 列出所有环境变量字符串的设置(类似于Unix系统下的env命令)。 3. echo <内容> 显示echo后的内容且换行。 4. help 简短概要地输出你的shell的使用方法和基本功能。 5. jobs 输出shell当前的一系列子进程,要求提供子进程的命名和PID号。 6. quit, exit, bye 退出shell。
Platform: | Size: 243712 | Author: 毕林 | Hits:

[OS Developscript.tar

Description: 自动切换操作系统运行状态提高工作效率的脚本。shell code for bash-Automatically switch the operating status of the operating system to improve the efficiency of the script. shell code for bash
Platform: | Size: 1024 | Author: Asakawa | Hits:

[Internet-Networklinux_shell

Description: Linux下程序shell编程简介 黑客工具 linux与unix_shel编程经典教程(第二版) Bash新手指南和高级Bash脚本编程指南-The the procedural shell programming under Linux Introduction hacking tools linux unix_shel programming the classic tutorial (second edition) Bash Beginner' s Guide Advanced Bash Scripting Guide
Platform: | Size: 10214400 | Author: suntao | Hits:

[Shell apiftp

Description: unix下shell脚步,实现文件传输,md5校验,断点续传。-this program write by bash in unix environment, the main founction of it is to realize file transtlated in using ftp command under the unix environment.
Platform: | Size: 3072 | Author: 王雪娇 | Hits:

[Windows Developmingw-get-inst-20120426

Description: is a collection of GNU utilities such as bash, make, gawk and grep to allow building of applications and programs which depend on traditionally UNIX tools to be present. It is intended to supplement MinGW and the deficiencies of the cmd shell.
Platform: | Size: 619520 | Author: abd elhamed | Hits:

[OtherABS_Guide_cn

Description: UNIX/Linux 最重要的软件之一就是shell,目前最流行的shell 被称为Bash(Bourne Again Shell),几乎所有的Linux 和绝大部分的UNIX 都可以使用Bash。作为系统与用户之间的交互接口,shell几乎是你在UNIX 工作平台上最亲密的朋友,因此,学好shell,是Linux/UNIX 的的开始,并且它会始终伴随你的工作学习。-UNIX/Linux software, is one of the most important shell, the most popular shell is called Bash (Bourne Again Shell), almost all Linux and most UNIX can use Bash. As the interaction between system and user interfaces, shell almost time for your work on UNIX platforms closest friends, therefore, to learn shell, is a Linux/UNIX start, and it will always work with you to learn.
Platform: | Size: 1367040 | Author: ZMJ | Hits:

[Technology ManagementLinuxBash

Description: 高级Bash 脚本编程指南>> 一本深入学习shell 脚本艺术的书籍-Advanced Bash Scripting Guide > > an in-depth study of the art of shell scripting
Platform: | Size: 1648640 | Author: luo | Hits:

[Linux-Unix9base-6.tar

Description: 9base 9base is a port of various original Plan 9 tools for Unix, based on plan9port. It currently contains the following original (no source changes) shell commands from Plan 9 for Unix: ascii awk basename bc cal cat cleanname cmp date dc du dd diff echo ed factor fortune fmt freq getflags grep hoc join look ls mk mkdir mtime pbd primes rc read sam sha1sum sed seq sleep sort split strings tail tee test touch tr troff unicode uniq unutf It also contains the Plan 9 libc, libbio, libregexp, libfmt and libutf. The overall SLOC is about 66kSLOC, so this userland + all libs is much smaller than, e.g. bash
Platform: | Size: 1045504 | Author: uantefenm | Hits:

[Internet-Networkshell_tutorial

Description: 一些关于shell的使用方法,和简介。可以帮助你对linux和bash有更深的了解-Some use the method on the shell, and biographies. Linux and can help you have a better understanding of bash
Platform: | Size: 31744 | Author: LeiyouWho | Hits:
« 1 2 ... 5 6 7 8 9 1011 »

CodeBus www.codebus.net